home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / pcz1189.zip / PCZ.DOC next >
Text File  |  1989-12-01  |  7KB  |  197 lines

  1.  PCZ 2.11.89  Dec 01, 1989
  2.  
  3.  
  4.  
  5.                    PCZ - A Public Domain implementation
  6.                          of Zmodem, Xmodem, Xmodem-1K, Sealink,
  7.                          Ymodem for the IBM PC family
  8.  
  9.               PcConnect Zmodem by Drue Kennon and Gary Smith
  10.  
  11.  
  12.  
  13.  
  14.          PCZ is a public domain Zmodem implementation that will allow
  15.          users of communication software that does not implement internal
  16.          Zmodem to access it through an external program.  It is a
  17.          fully-featured version of Zmodem, but does not have the
  18.          professional and commercial polish of a program like Omen
  19.          Tech's DSZ.  However we do believe that it will be suitable
  20.          for the average BBS'r.
  21.  
  22.          PCZ also provides support for the basic Xmodem variants:
  23.          Xmodem, Xmodem-1K, Sealink, and Ymodem Batch.
  24.  
  25.  
  26.  
  27.  
  28. Command line:
  29. Send
  30.         PCZ [port (1-4)] [speed (300-9600)] [sz] (r) <filenames.ext ... ...>
  31.  
  32.  
  33. Recv
  34.         PCZ [port (1-4)] [speed (300-9600)] [rz] <filename.ext>
  35.  
  36. The entering of the words << port & speed >> are optional.
  37.  
  38. Default port = 1;  Default speed = 2400;
  39.  
  40.  
  41. To receive a file using Zmodem simply enter :
  42.  
  43.        |-- PCZ rz              - Using com port one.
  44.  batch |   PCZ 2 rz            - Using com port two.
  45.  modes |   PCZ 3 2400 rz       - Using com port three at 2400 baud.
  46.        |-- PCZ 4 1200 rz       - Using com port four at 1200 baud.
  47.  
  48.            PCZ rz INFILE.ARC   - Receive one file and name it INFILE.ARC
  49.  
  50.  
  51. To send a file using Zmodem simply enter :
  52.  
  53.      PCZ sz OUTFILE.ARC             - Using com port one.
  54.      PCZ 2 sz OUTFILE.ARC           - Using com port two.
  55.      PCZ 3 2400 sz OUTFILE.ARC      - Using com port three at 2400 baud.
  56.      PCZ 4 1200 sz OUTFILE.ARC      - Using com port four at 1200 baud.
  57.      PCZ sz r OUTFILE.ARC           - Send file and resume transfer.
  58.  
  59. To send a batch of files via Zmodem :
  60.  
  61.         Create a text file with one complete file spec per line,
  62.         with a maximum of 25 files allowed.
  63.         Have no blank lines in the file and place the "@" symbol
  64.         as the first character of the dos file name.  Pass it
  65.         to PCZ on the command line as follows:
  66.  
  67.      PCZ 1 2400 sz @OUTFILE.TXT  - Using port 1 at 2400 baud.
  68.  
  69.  
  70. To receive files using any of the Xmodem variants, the format is :
  71.  
  72.      PCZ <port speed> rs filename   -  Sealink recieve
  73.      PCZ <port speed> rx filename   -  Xmodem receive
  74.      PCZ <port speed> r1 filename   -  Xmodem-1K receive
  75.      PCZ <port speed> ry filename   -  Ymodem receive
  76.      PCZ <port speed> ry            -  Ymodem Batch receive
  77.  
  78.  
  79. To send files using any of the Xmodem variants, the format is :
  80.  
  81.      PCZ <port speed> ss filename   -  Sealink
  82.      PCZ <port speed> sx filename   -  Xmodem
  83.      PCZ <port speed> s1 filename   -  Xmodem-1K
  84.      PCZ <port speed> sy filename   -  Ymodem
  85.  
  86.  
  87. If you want PCZ to keep a file transfer log then the following line must be
  88. added to your autoexec.bat file or typed in on the command line.
  89.  
  90. set pczlog=d:\mycommdir;
  91.  
  92. where d is the drive & mycommdir is where you want the logfile to be placed.
  93.  
  94.  
  95.  
  96. Note: the bytes and cps rate reflect the actual number of bytes sent
  97. to or received.  It does not necessarily reflect any specific "BLOCKSIZE".
  98. This will let you see actually how PCZ is progressing in the transmission
  99. of data.  In the best case "Full Streaming Zmodem", you will see the time
  100. for actual file data; worse case time will reflect the transmission of
  101. data headers and block acks.  It is different, but I hope everyone can
  102. appreciate a more accurate account of what is happening inside the powerful
  103. zmodem protocol.
  104.  
  105.  
  106.                         History
  107.                         -------
  108.  
  109.         V1.01.88 - Intial release, no known bugs.  Please report
  110.                    any problems to Drue Kennon or Gary Smith.
  111.  
  112.         V2.01.89 - Extended version that contains Xmodem, Xmodem-1K,
  113.                    Sealink, and Ymodem Batch in addition to Zmodem.
  114.                    Also does provide full file sharing for use in
  115.                    networking enviroments.
  116.  
  117.         V2.11.89
  118.                   Fixed several reported bugs.  Enabled hardware flow
  119.                   control for use with MNP type modems. Enhanced port
  120.                   speeds up to 19.2k, and tightened some code for
  121.                   more efficient operation. Properly set errorlevel 1
  122.                   in event of transfer failure.
  123.  
  124.  
  125.  
  126.                         License
  127.                         -------
  128.  
  129.         PCZ 2.11.89, Copyright (c) Drue Kennon and Gary Smith 1989.
  130.         ALL RIGHTS RESERVED.
  131.  
  132.         PCZ is free, but it is a copyrighted work and may be distributed only
  133.         pursuant to this license.
  134.  
  135.         Permission is hereby granted to reproduce and disseminate PCZ so long
  136.         as:
  137.  
  138.            (1)  No remuneration of any kind is received in exchange; and
  139.  
  140.            (2)  Distribution is without ANY modification to the contents of
  141.                 PCZ.EXE and all accompanying documentation and/or support
  142.                 files, including the copyright notice and this license.
  143.  
  144.         No copy of PCZ may be distributed without including a copy of this
  145.         license.
  146.  
  147.         Any other use is prohibited without express, written permission in
  148.         advance.
  149.  
  150.         Contact may be made by any one of the following methods.
  151.  
  152.  
  153.                 Drue Kennon                    Gary J. Smith
  154.                 Rural Route #2 Box 54          6122 Cedar Wood Drive
  155.                 Center, TX. 75935              Columbia, MD 21044
  156.  
  157.                 Voice 409-598-3809             Voice 301-740-5880
  158.  
  159.  
  160.                              The Programmer's Corner
  161.                              Data/BBS:   301-596-1180
  162.                              Data/BBS:   301-995-3744
  163.  
  164.                              6 roll over lines in place
  165.                              with over 3/4 gigabyte of
  166.                              storage space
  167.  
  168.  
  169.  
  170.  
  171.  
  172.         For use by corporations, government, institutions, or for
  173.         profit, contact Omen Technology Incorporated for licensing
  174.         information using their excellent professional DSZ Zmodem
  175.         implementation.
  176.  
  177.  
  178.                    Chuck Forsberg
  179.                    Omen Technology Inc
  180.                    The High Reliability Software
  181.                    17505-V Northwest Sauvie Island Road
  182.                    Portland Oregon 97231
  183.                    Modem: 503-621-3746 Speed 1200,2400,19200(Telebit PEP)
  184.                    Compuserve:70007,2304  GEnie:CAF
  185.                    UUCP: ...!tektronix!reed!omen!caf
  186.  
  187.  
  188.     Omen Technolgy makes Professional-YAM, a comphrensive comms program with
  189.     unmatched power.  Flavors are available for PC-DOS, Unix, Xenix, and OS/2
  190.     Protected mode.
  191.  
  192.     ZCOMM is a full featured shareware communications package.
  193.  
  194.     DSZ, ZCOMM, Professional-YAM
  195.     are Copyrights of Omen Technology Inc, all rights reserved.
  196.  
  197.